home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19941031-19941221 / 000349_news@columbia.edu_Mon Dec 5 15:07:06 1994.msg < prev    next >
Internet Message Format  |  1995-07-31  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01647
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 5 Dec 1994 10:07:13 -0500
  3. Received: by apakabar.cc.columbia.edu id AA18815
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 5 Dec 1994 10:07:11 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Dial out problem with Solaris 2.3
  9. Date: 5 Dec 1994 15:07:06 GMT
  10. Organization: Columbia University
  11. Lines: 27
  12. Message-Id: <3bvaaq$ibl@apakabar.cc.columbia.edu>
  13. References: <94120257161@microserve.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <94120257161@microserve.com>,
  18. Byron Chandler <Byron.Chandler@Microserve.com> wrote:
  19.  
  20. >I'm having a problem with kermit on a Sparcstation 2 with Solaris 2.3.  I
  21. >have a serial line set up with the admintool's serial port manager for a
  22. >bidirectional modem.  It works fine with dial ins.  By the way, the modem is
  23. >a Telebit T2500.)  Problems arise when I go to dial out.
  24. >
  25. UNIX bidirectional ttys are a big problem for C-Kermit.  That's because
  26. every version of UNIX, and every release of every version, handles this issue
  27. differently.  It's no surprise that tip and/or cu on a particular UNIX
  28. version, such as Solaris 2.3, handle bidirectional ttys OK, because these
  29. are vendor-provided utilities.  They are probably also installed suid to
  30. root or somesuch.
  31.  
  32. There is no way C-Kermit, which runs on over 400 different UNIX variations,
  33. can account for bidirectional ttys on all of them (or for that matter, any
  34. of them!) without introducing thousands of lines of code, security risks, and
  35. insurmountable maintenance headaches.
  36.  
  37. The standard advice (found in all the relevant documentation) is: before
  38. using C-Kermit to dial out on a bidirectional tty, use your system utilities
  39. to make it non-bidirectional.  For example, make a shell script wrapper that
  40. kills the getty and restarts init, or that runs admintool, or whatever, then
  41. runs Kermit, and then when Kermit exits, puts the line back the way it was.
  42.  
  43. - Frank